home *** CD-ROM | disk | FTP | other *** search
/ Chip: 2001 Haziran / CHIP Haziran2001.iso / prog / haziran / 20 / setup.exe / {app} / plugins / XQ Yahoo Messenger 7.xpl < prev    next >
Encoding:
XSetup plugin  |  2001-03-28  |  1.1 KB  |  32 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Instant Messaging\Yahoo Messenger"
  5. "NAME"="Y! Menu Title"
  6. "VERSION"="1.0"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Y! Menu Title"
  9. "DESCRIPTION 1"="You can change the title of the Y! menu in Yahoo Messenger here."
  10. "DESCRIPTION 2"="NOTE: If you have Yahoo! Messenger open at the moment, you will need to close it so that the changes can take effect."
  11. "DESCRIPTION 3"="Yahoo! Messenger may be obtained at http://messenger.yahoo.com/."
  12. "AUTHOR"="Neil R. Turner (totalxs@hotmail.com) for Xteq Systems"
  13. "CONTACTURL"="http://www.neilrt.cwc.net/"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"="Fed up with Yahoo!? Try http://dmoz.org/."
  16.  
  17. sP="HKCR\TypeLib\{F0012D80-989C-11D3-B7C5-0090271D5CA7}\3.0\HELPDIR\@"
  18.  
  19. Sub Plugin_Initialize
  20.  s=RegReadValue(sP)
  21.  t=IniReadValue(s & "\cobrand.ini","COBRAND","Menu Caption")
  22.  Call SetUIElement(1,t)
  23. End Sub
  24.  
  25. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  26.  t=GetUIElement(1)
  27.  s=RegReadValue(sP)
  28.  Call IniWriteValue(s & "\cobrand.ini","COBRAND","Menu Caption",t)
  29. End Sub
  30.  
  31. Sub Plugin_Terminate 
  32. End Sub